home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / ada / gnat-3.05- / gnat-3 / gnat-3.05-i486-linux-elf-bin / rts / 2atcmasp.adb < prev    next >
Encoding:
Text File  |  1996-06-07  |  4.2 KB  |  98 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --  S Y S T E M . T A S K _ C L O C K . M A C H I N E _ S P E C I F I C S   --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.1 $                             --
  10. --                                                                          --
  11. --     Copyright (C) 1991,1992,1993,1994,1996 Florida State University      --
  12. --                                                                          --
  13. -- GNARL is free software; you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNARL; see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNARL was developed by the GNARL team at Florida State University. It is --
  32. -- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
  33. -- State University (http://www.gnat.com).                                  --
  34. --                                                                          --
  35. ------------------------------------------------------------------------------
  36.  
  37. --  This package provides target machine specific Clock related definitions.
  38. --  Portability of System.Task_Clock package is accomplished separating
  39. --  this child package out. We only need to modify this package for
  40. --  different targets.
  41.  
  42. with Interfaces.C; use Interfaces.C;
  43.  
  44. with Text_IO;
  45. package body System.Task_Clock.Machine_Specifics is
  46.  
  47.    -----------
  48.    -- Clock --
  49.    -----------
  50.  
  51.    Max_Alignment : constant := Standard'Maximum_Alignment;
  52.  
  53.    function Clock return Stimespec is
  54.  
  55.       type timeval is
  56.          record
  57.             tv_sec  : int;
  58.             tv_usec : int;
  59.          end record;
  60.       for timeval use
  61.          record
  62.             tv_sec at 0 range 0 .. 31;
  63.             tv_usec at 4 range 0 .. 31;
  64.          end record;
  65.       for timeval'Alignment use Max_Alignment;
  66.  
  67.       type timezone is
  68.          record
  69.             field1 : int;
  70.             field2 : int;
  71.          end record;
  72.  
  73.       for timezone use
  74.          record
  75.             field1 at 0 range 0 .. 31;
  76.             field2 at 4 range 0 .. 31;
  77.          end record;
  78.       for timezone'Alignment use Max_Alignment;
  79.  
  80.       tv : aliased timeval;
  81.       tz : aliased timezone;
  82.  
  83.       procedure gettimeofday (tp : access timeval; tz : access timezone);
  84.       pragma Import (C, gettimeofday, "gettimeofday", "gettimeofday");
  85.  
  86.    begin
  87.       gettimeofday (tv'Access, tz'Access);
  88.       return
  89.         Time_Of (Integer (tv.tv_sec),
  90.                  Integer (tv.tv_usec) * 1000); --  Convert to nanoseconds
  91.    end Clock;
  92.  
  93.  
  94. begin
  95.    Stimespec_Ticks := Time_Of (0, 1000000);
  96.  
  97. end System.Task_Clock.Machine_Specifics;
  98.